Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@types/text-encoding-utf-8
Advanced tools
TypeScript definitions for text-encoding-utf-8
npm install --save @types/text-encoding-utf-8
This package contains type definitions for text-encoding-utf-8 (https://github.com/arv/text-encoding-utf-8).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/text-encoding-utf-8.
export namespace TextEncoding {
interface TextDecoderOptions {
fatal?: boolean | undefined;
ignoreBOM?: boolean | undefined;
}
interface TextDecodeOptions {
stream?: boolean | undefined;
}
interface TextEncoderOptions {
NONSTANDARD_allowLegacyEncoding?: boolean | undefined;
}
interface TextDecoder {
encoding: string;
fatal: boolean;
ignoreBOM: boolean;
decode(input?: ArrayBuffer | ArrayBufferView, options?: TextDecodeOptions): string;
}
interface TextEncoder {
encoding: string;
encode(input?: string, options?: TextEncodeOptions): Uint8Array;
}
interface TextEncodeOptions {
stream?: boolean | undefined;
}
interface TextEncoderStatic {
(utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
new(utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
}
interface TextDecoderStatic {
(label?: string, options?: TextDecoderOptions): TextDecoder;
new(label?: string, options?: TextDecoderOptions): TextDecoder;
}
interface TextEncodingStatic {
TextEncoder: TextEncoderStatic;
TextDecoder: TextDecoderStatic;
}
}
export const TextDecoder: TextEncoding.TextDecoderStatic;
export const TextEncoder: TextEncoding.TextEncoderStatic;
export const TextEncoding: TextEncoding.TextEncodingStatic;
export as namespace TextEncoding;
These definitions were written by Paul Taylor.
FAQs
TypeScript definitions for text-encoding-utf-8
We found that @types/text-encoding-utf-8 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.